home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 September / PCWorld_2008-09_cd.bin / v cisle / sadanastroju / lightning-0.8-tb-win.xpi / chrome / calendar.jar / content / calendar / chooseCalendarDialog.xul < prev    next >
Extensible Markup Language  |  2008-01-16  |  5KB  |  116 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- ***** BEGIN LICENSE BLOCK *****
  3.    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.    -
  5.    - The contents of this file are subject to the Mozilla Public License Version
  6.    - 1.1 (the "License"); you may not use this file except in compliance with
  7.    - the License. You may obtain a copy of the License at
  8.    - http://www.mozilla.org/MPL/
  9.    -
  10.    - Software distributed under the License is distributed on an "AS IS" basis,
  11.    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.    - for the specific language governing rights and limitations under the
  13.    - License.
  14.    -
  15.    - The Original Code is Mozilla Calendar Code.
  16.    -
  17.    - The Initial Developer of the Original Code is
  18.    -    Joey Minta <jminta@gmail.com>
  19.    - Portions created by the Initial Developer are Copyright (C) 2006
  20.    - the Initial Developer. All Rights Reserved.
  21.    -
  22.    - Contributor(s):
  23.    -   Philipp Kewisch <mozilla@kewis.ch>
  24.    -
  25.    - Alternatively, the contents of this file may be used under the terms of
  26.    - either the GNU General Public License Version 2 or later (the "GPL"), or
  27.    - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  28.    - in which case the provisions of the GPL or the LGPL are applicable instead
  29.    - of those above. If you wish to allow use of your version of this file only
  30.    - under the terms of either the GPL or the LGPL, and not to allow others to
  31.    - use your version of this file under the terms of the MPL, indicate your
  32.    - decision by deleting the provisions above and replace them with the notice
  33.    - and other provisions required by the LGPL or the GPL. If you do not delete
  34.    - the provisions above, a recipient may use your version of this file under
  35.    - the terms of any one of the MPL, the GPL or the LGPL.
  36.    -
  37.    - ***** END LICENSE BLOCK ***** -->
  38.  
  39. <?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
  40. <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
  41.  
  42. <!-- DTD File with all strings specific to the file -->
  43. <!DOCTYPE page
  44. [
  45.     <!ENTITY % dtd1 SYSTEM "chrome://calendar/locale/calendar.dtd" > %dtd1;
  46. ]>
  47.  
  48. <dialog id="chooseCalendar"
  49.         title="&calendar.select.dialog.title;"
  50.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  51.         buttons="accept,cancel"
  52.         onload="loadCalendars();"
  53.         ondialogaccept="return doOK();"
  54.         persist="screenX screenY height width">
  55.  
  56.     <script type="application/x-javascript"><![CDATA[
  57.         function loadCalendars() {
  58.             const calendarManager = Components.classes["@mozilla.org/calendar/manager;1"]
  59.                                             .getService(Components.interfaces.calICalendarManager);
  60.             var listbox = document.getElementById("calendar-list");
  61.             var composite = window.opener.getCompositeCalendar();
  62.             var selectedIndex = 0;
  63.             var calendars;
  64.  
  65.             if (window.arguments[0].calendars) {
  66.                 calendars = window.arguments[0].calendars;
  67.             } else {
  68.                 calendars = calendarManager.getCalendars({});
  69.             }
  70.  
  71.             for (var i = 0; i < calendars.length; i++) {
  72.                 var cal = calendars[i];
  73.                 var listItem = document.createElement("listitem");
  74.  
  75.                 var colorCell = document.createElement("listcell");
  76.                 try {
  77.                     var calColor = cal.getProperty('color');
  78.                     colorCell.style.background = calColor || "#a8c2e1";
  79.                 } catch(e) {} 
  80.                 listItem.appendChild(colorCell);
  81.  
  82.                 var nameCell = document.createElement("listcell");
  83.                 nameCell.setAttribute("label", cal.name);
  84.                 listItem.appendChild(nameCell);
  85.  
  86.                 listItem.calendar = cal;
  87.                 listbox.appendChild(listItem);
  88.                 listItem.setAttribute("flex","1");
  89.  
  90.                 // Select the default calendar of the opening calendar window.
  91.                 if (cal.id == composite.defaultCalendar.id) {
  92.                     selectedIndex = i;
  93.                 }
  94.             }
  95.             document.getElementById("prompt").value = window.arguments[0].promptText;
  96.             listbox.selectedIndex = selectedIndex;
  97.             listbox.ensureIndexIsVisible(selectedIndex);
  98.         }
  99.  
  100.         function doOK() {
  101.             var listbox = document.getElementById("calendar-list");
  102.             window.arguments[0].onOk(listbox.selectedItem.calendar);
  103.         }
  104.     ]]></script>
  105.  
  106.     <vbox id="dialog-box" flex="1">
  107.         <textbox id="prompt" class="plain" readonly="true" multiline="true" rows="2"/>
  108.         <listbox id="calendar-list" rows="5" flex="1" seltype="single">
  109.             <listcols>
  110.                 <listcol/>
  111.                 <listcol flex="1"/>
  112.             </listcols>
  113.         </listbox>
  114.     </vbox>
  115. </dialog>
  116.